Description
Used with VALUEMAPRENDERER for matching exact values within a specified field in the shapefile's DBF table. When a match occurs, the symbol is drawn as specified for that EXACT value.
Diagram
Overview
|
EXACT
Used with VALUEMAPRENDERER for matching exact values within a specified field in the shapefile's DBF table. When a match occurs, the symbol is drawn as specified for that EXACT value.
|
label optional xs:string
Label for legend.
|
|
value optional
Values used for matching records in a selected field. Can be a numeric, string, or date value.
|
|
Sequence
|
COMPLEXLINESYMBOL
Used to symbolize line features. Provides additional symbology options beyond SIMPLELINESYMBOL.
|
|
COMPLEXPOLYGONSYMBOL
Used to symbolize polygon features. Provides additional symbology options beyond SIMPLEPOLYGONSYMBOL.
|
|
GROUPSYMBOL
Used to symbolize features with multiple symbols acting as a single symbol (e.g., a freeway line symbol consists of a group of 3 line symbols).
|
|
RASTERFILLSYMBOL
Symbolizes polygon features using the specified image as a fill symbol.
|
|
SIMPLEMARKERSYMBOL
Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.
|
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
label | xs:string | optional | | | Label for legend. |
value | | optional | | | Values used for matching records in a selected field. Can be a numeric, string, or date value. |
Examples
Restrictions
- One renderer child element is required for each EXACT element in the value map.
Source
<xs:element name="EXACT" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Used with VALUEMAPRENDERER for matching exact values within a specified field in the shapefile's DBF table. When a match occurs, the symbol is drawn as specified for that EXACT value.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="apl:COMPLEXLINESYMBOL" />
<xs:element ref="apl:COMPLEXPOLYGONSYMBOL" />
<xs:element ref="apl:GROUPSYMBOL" />
<xs:element ref="apl:RASTERFILLSYMBOL" />
<xs:element ref="apl:RASTERMARKERSYMBOL" />
<xs:element ref="apl:SIMPLELINESYMBOL" />
<xs:element ref="apl:SIMPLEMARKERSYMBOL" />
<xs:element ref="apl:SIMPLEPOLYGONSYMBOL" />
<xs:element ref="apl:TRUETYPEMARKERSYMBOL" />
</xs:sequence>
<xs:attribute name="label" type="xs:string">
<xs:annotation>
<xs:documentation>Label for legend.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="value">
<xs:annotation>
<xs:documentation>Values used for matching records in a selected field. Can be a numeric, string, or date value.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also